Enable automake silent-rules by default
authorMartin Nordholts <martinn@src.gnome.org>
Tue, 14 Jul 2009 18:06:27 +0000 (20:06 +0200)
committerMartin Nordholts <martinn@src.gnome.org>
Tue, 14 Jul 2009 18:06:27 +0000 (20:06 +0200)
Enable silent build rules by default, requires at least
Automake-1.11. Disable by either passing --disable-silent-rules to
configure or passing V=1 to make.

configure.ac

index 9e5e9ec0c7ef70209776e7c7c55d70336b1f6153..44977789338926019e439c91802b8ed3c2b41886 100644 (file)
@@ -38,6 +38,11 @@ m4_define([babl_stable],
 AC_INIT(babl, babl_major_version.babl_minor_version.babl_micro_version)
 AC_CONFIG_SRCDIR(babl/babl.h)
 
+# Enable silent build rules by default, requires at least
+# Automake-1.11. Disable by either passing --disable-silent-rules to
+# configure or passing V=1 to make
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+
 BABL_MAJOR_VERSION=babl_major_version
 BABL_MINOR_VERSION=babl_minor_version
 BABL_MICRO_VERSION=babl_micro_version